home *** CD-ROM | disk | FTP | other *** search
/ Skunkware 5 / Skunkware 5.iso / src / X11 / xarchie-2.0.9 / help-text2.sh < prev    next >
Linux/UNIX/POSIX Shell Script  |  1995-06-18  |  487b  |  15 lines

  1. #!/bin/sh
  2. #
  3. # help-text2.sh : Extract the headings by taking the non-indented initial
  4. #    parts of the help text strings. The output is a set of initializers
  5. #    for a { lineno,string } structure. Since we can only use the
  6. #    sed = command to print the line number, and it prints it on a
  7. #    line by itself, the output is kinda gross. Sorry.
  8. #
  9. # George Ferguson, ferguson@cs.rochester.edu, 23 Apr 1993.
  10. #
  11.  
  12. echo '{'
  13. sed -n -e '/^NULL,$/=' -e 's/^\("..[^ "].*\)\\n",$/,\1"},{/p'
  14. echo '000,NULL}'
  15.